home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / JUNO Librarian 1.0.3 / Sample Scripts / 16 Change DCO Range < prev    next >
Encoding:
Text File  |  1994-01-28  |  302 b   |  14 lines  |  [TEXT/ToyS]

  1. tell application "JUNO Librarian"
  2.     activate -- if needed
  3.     set x to Parameter 16 of Window "Sample"
  4.     set x to (round (x ÷ 8) rounding down)
  5.     set x to x * 8
  6.     
  7.     -- select 1 of 3
  8.     --    set x to x + 1 -- 16"
  9.     --    set x to x + 2 -- 8"
  10.     set x to x + 4 -- 4"
  11.     
  12.     copy x to Parameter 16 of Window "Sample"
  13. end tell
  14.